home *** CD-ROM | disk | FTP | other *** search
/ FDR / FDR.iso / FDR / FDR.DXR / 00001_Launch main.ls next >
Encoding:
Text File  |  1996-10-22  |  362 b   |  25 lines

  1. global vHFlag, vVoid
  2.  
  3. on startMovie
  4.   movieInits(1)
  5.   set the exitLock to 1
  6.   cursor(0)
  7. end
  8.  
  9. on stopMovie
  10.   movieInits(0)
  11.   set vHFlag to vVoid
  12. end
  13.  
  14. on movieInits onOrOff
  15.   if onOrOff then
  16.     setPuppets(1, [6])
  17.     set the cursor of sprite 6 to [10, 11]
  18.     cursor(0)
  19.   else
  20.     setPuppets(0, [6])
  21.     set the cursor of sprite 6 to 0
  22.     cursor(0)
  23.   end if
  24. end
  25.